home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 9675 / 9675.xpi / chrome / content / simpletimer-sliderAlert.xul < prev    next >
Extensible Markup Language  |  2009-08-01  |  2KB  |  50 lines

  1. <?xml-stylesheet href="chrome://global/skin/alerts/alert.css"
  2.                  type="text/css"?>
  3.  
  4. <?xml-stylesheet href="chrome://simpletimer/content/simpletimer.css"
  5.                  type="text/css"?>
  6.  
  7. <!DOCTYPE window SYSTEM "chrome://simpletimer/locale/simpletimer.dtd">
  8.  
  9. <window id="simtim-sliderAlert"
  10.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  11.         align="start"
  12.         onload="SimpleTimerSliderAlert.onAlertLoad()">
  13.  
  14. <script type="application/x-javascript"
  15.         src="chrome://simpletimer/content/simpletimer-sliderAlert.js" />
  16.  
  17. <stringbundleset id="stringbundleset">
  18.     <stringbundle id="simtim-strings"
  19.                   src="chrome://simpletimer/locale/simpletimer.properties"/>
  20. </stringbundleset>
  21.  
  22. <hbox id="simtim-hboxSliderAlert"
  23.       class="alertBox">
  24.     <vbox>
  25.         <image src='chrome://simpletimer/content/images/clock48.png'/>
  26.     </vbox>
  27.     <vbox>
  28.         <description id="simtim-descAppName"
  29.                      class="simtim-sliderName">
  30.             &name;
  31.         </description>
  32.         <seperator />
  33.         <description id="simtim-descMessage"
  34.                      value="" />
  35.         <grid id="simtim-gridItems">
  36.             <columns>
  37.                 <column />
  38.                 <column />
  39.             </columns>
  40.             <rows>
  41.             </rows>
  42.         </grid>
  43.     </vbox>
  44. </hbox>
  45.  
  46. <!-- This method is called inline because we want to make sure we establish the width
  47.      and height of the alert before we fire the onload handler. (Credit Reminderfox) -->
  48. <script type="application/x-javascript">SimpleTimerSliderAlert.prefillAlertInfo();</script>
  49.  
  50. </window>